home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 9 / Night Owl CD-ROM (NOPV9) (Night Owl Publisher) (1993).ISO / 002a / tted200.zip / INSTALL.BAT < prev    next >
DOS Batch File  |  1993-06-02  |  954b  |  33 lines

  1. Echo off
  2. REM -- Install batch file for the Tiny Tafel Editor v2.00
  3.  
  4. CLS
  5. IF %1!==! GOTO NODRIVE
  6. ECHO This is the INSTALL.BAT file for the Tiny Tafel Editor v2.00.  This routine
  7. ECHO will create a subdirectory on drive %1 called TTEDIT and will copy all of
  8. ECHO the editor's files into it.  If you do -not- wish to do this, press
  9. ECHO CTRL-BREAK now and answer Yes to terminate this routine.  Otherwise, press
  10. ECHO any other key to continue.
  11. ECHO   
  12. ECHO   
  13. PAUSE
  14. MKDIR %1\TTEDIT
  15. COPY *.* %1\TTEDIT
  16. CLS
  17. ECHO The Tiny Tafel Editor has been copied onto your hard disk.  You may start
  18. ECHO the editor by typing the following three lines, pressing ENTER after each
  19. ECHO one:      (write them down!)
  20. ECHO    
  21. ECHO       %1
  22. ECHO       CD\TTEDIT
  23. ECHO       TTEDIT
  24. ECHO   
  25. GOTO END
  26.  
  27. :NODRIVE
  28. ECHO You must specify the letter of the hard disk that you want the Tiny Tafel
  29. ECHO Editor copied onto.  Example:  INSTALL C:
  30. ECHO   
  31.  
  32. :END
  33.